Welcome![Sign In][Sign Up]
Location:
Search - canny edge

Search list

[Othercanny-edge-detector

Description: the algorithm is canny edge detector that is used to detect edges in an image.
Platform: | Size: 1024 | Author: sal89 | Hits:

[Special EffectsUsing-Canny-edge-extraction

Description: 本代码时使用Canny算子进行边缘检测的实现-Using Canny edge detection operator training
Platform: | Size: 190464 | Author: 李士超 | Hits:

[Special Effectscanny-edge-detector

Description: 基于opencv实现的canny边缘检测-canny edge detector based on opencv
Platform: | Size: 608256 | Author: 苏丰 | Hits:

[Special Effectscanny-edge-detect

Description: 本代码主要实现Canny算子边缘检测的功能,可以调节阈值进行比较。我测试的时候发现阈值80比较理想。-This code mainly realize Canny edge detection function, you can adjust the threshold. When I found that the threshold test 80 is ideal.
Platform: | Size: 1136640 | Author: patricknew | Hits:

[Special Effectscanny-edge-effect

Description: opencv的canny函数检测边缘的效果和matlab的不同 matlab的边缘更为细腻 -opencv canny edge effect and matlab function testing different- the edges of the matlab is more exquisite
Platform: | Size: 7168 | Author: fangsm | Hits:

[Software Engineeringcanny-edge

Description: canny edge detection method
Platform: | Size: 1024 | Author: Dharampal | Hits:

[Othercanny-edge

Description: this canny edge detector to capture the edge of the imge.it is a good feature descriptor-this is canny edge detector to capture the edge of the imge.it is a good feature descriptor
Platform: | Size: 19456 | Author: Akshay Tiwari | Hits:

[OpenCVCanny-edge-detection

Description: 用OpenCV实现canny边缘检测,和MATLAB的canny边缘检测有所不同。-Canny edge detection using OpenCV,it s different the canny in MATLAB.
Platform: | Size: 783360 | Author: Bruce | Hits:

[matlabCanny-Edge-Detector

Description: Canny Edge Detector Using Matlab GUI
Platform: | Size: 11883520 | Author: asmm | Hits:

[Othercanny-edge-detecction

Description: canny边缘检测,Canny 算法适用于不同的场合。它的参数允许根据不同实现的特定要求进行调整以识别不同的边缘特性。对于PC上的实时图像处理来说可能慢得无法使用,尤其是在使用大的高斯滤波器的情况下。但是,我们讨论计算能力的时候,也要考虑到随着处理器速度不断提升,有望在未来几年使得这不再成为一个问题。-canny edge detection, Canny algorithm is suitable for different occasions. It allows the parameters adjusted according to the specific requirements of different implementations to identify different edge characteristics. For real-time image processing on a PC, it may not be too slow to use, especially when using large Gaussian filter case. However, we discuss the computational power of the time, also taking into account rising as processor speed, is expected to make in the next few years, this is no longer a problem.
Platform: | Size: 132096 | Author: 张聪 | Hits:

[Special EffectsCanny-edge-detection

Description: canny边缘检测,边缘检测的目的是在保留原有图像属性的情况下,显著减少图像的数据规模。目前有多种算法可以进行边缘检测,虽然Canny算法年代久远,但可以说它是边缘检测的一种标准算法,而且仍在研究中广泛使用。-Canny edge detection,The purpose of edge detection is to significantly reduce the size of the image by preserving the original image attributes. There are a variety of algorithms for edge detection, although the Canny algorithm is old, but it can be said that it is a standard algorithm for edge detection, and is still widely used in research.
Platform: | Size: 121856 | Author: 齐畅 | Hits:

[Special EffectsCanny-edge-detection

Description: canny边缘检测,实例代码,亲测可用,欢迎下载-Canny edge detection
Platform: | Size: 1251328 | Author: 冯静 | Hits:

[Special Effectscanny

Description: 一种在二维、三维数据中利用Canny算子检测边缘的边缘检测器(A Canny edge detector for two-dimensional image and three-dimensional volume data.)
Platform: | Size: 18432 | Author: 洪天昊 | Hits:

[Special EffectsCanny边缘检测.c

Description: canny边缘检测,用MATLAB编写,能较好的实现边缘检测(Canny edge detection, written in MATLAB, can better achieve edge detection)
Platform: | Size: 3072 | Author: 大鹏鹏大 | Hits:

[VHDL-FPGA-VerilogCANNY

Description: 对特定图片进行canny边缘检测。首先是高斯模糊,然后sobel算子处理,再局部极大值确定,最后阈值判断。(Canny edge detection for a particular picture. The first is the Gauss fuzzy, and then the Sobel operator is processed, and then the local maximum is determined, and finally the threshold is judged.)
Platform: | Size: 7168 | Author: TonytheGreat | Hits:

[Special EffectsCanny Detector

Description: MATLAB上实现Canny边缘检测,经过高斯滤波,边缘检测,非极大抑制,阀值处理,能够很好的实现边缘检测。程序里需要更改换成自己的路径和地址名。(This is the source of MATLAB for Canny edge detector. Well, it can effectively detect the edge information of the desired image.)
Platform: | Size: 1024 | Author: 林中木 | Hits:

[Special EffectsCanny

Description: 本压缩包是canny边缘检测的相关程序,有利于初学者学习边缘检测相关知识。图片路径请自行改动。(The compression package is Canny edge detection related procedures, useful for beginners to learn edge detection related knowledge. Please change the picture path automatically.)
Platform: | Size: 15543296 | Author: 米兰的小铁匠1 | Hits:

[Special Effectscanny边缘检测

Description: 彩色图像在HSI模型下的CANNY边缘检测(CANNY edge detection of color images under HSI model)
Platform: | Size: 3072 | Author: tingwwwting | Hits:

[matlabedge test code

Description: This code is used for shadow image edge detection process
Platform: | Size: 184320 | Author: vmmbabu | Hits:

[Special EffectsCANNY

Description: 根据CNNAY算法的4个步骤 1. 用高斯滤波器平滑图像;(图像去噪) 2. 用一阶偏导有限差分计算梯度幅值和方向;(特征增强) 3. 对梯度幅值进行非极大值抑制 ;(边缘检测) 4. 用双阈值算法检测和连接边缘。(形态学处理) 编写的边缘检测程序,简单实用(There are four parts of Canny edge detection: 1. smoothing the image with Gauss filter; (image denoising) 2. calculate gradient amplitude and direction by first order partial derivative finite difference method (feature enhancement) 3. non maximum suppression of the gradient amplitude; (edge detection) 4. detect and connect edges with double threshold algorithm. (morphological treatment))
Platform: | Size: 1024 | Author: UJSLEMON | Hits:
« 1 2 3 4 5 6 78 9 10 11 12 ... 50 »

CodeBus www.codebus.net